mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-05 21:34:30 +00:00
gr-sim: Makefile had LFLAGS in wrong order
This commit is contained in:
parent
67fec1ce5b
commit
d4d766a840
@ -10,16 +10,16 @@ all: fire fire2 fire_blue fire3 fire4
|
||||
|
||||
|
||||
fire: fire.o $(GR_SIM)
|
||||
$(CC) $(LFLAGS) $(SDL_LIBS) -o fire fire.o \
|
||||
$(GR_SIM)
|
||||
$(CC) $(LFLAGS) -o fire fire.o \
|
||||
$(GR_SIM) $(SDL_LIBS)
|
||||
|
||||
fire.o: fire.c
|
||||
$(CC) $(CFLAGS) -c fire.c
|
||||
|
||||
|
||||
fire2: fire2.o $(GR_SIM)
|
||||
$(CC) $(LFLAGS) $(SDL_LIBS) -o fire2 fire2.o \
|
||||
$(GR_SIM)
|
||||
$(CC) $(LFLAGS) -o fire2 fire2.o \
|
||||
$(GR_SIM) $(SDL_LIBS)
|
||||
|
||||
fire2.o: fire2.c
|
||||
$(CC) $(CFLAGS) -c fire2.c
|
||||
@ -27,16 +27,16 @@ fire2.o: fire2.c
|
||||
|
||||
|
||||
fire3: fire3.o $(GR_SIM)
|
||||
$(CC) $(LFLAGS) $(SDL_LIBS) -o fire3 fire3.o \
|
||||
$(GR_SIM)
|
||||
$(CC) $(LFLAGS) -o fire3 fire3.o \
|
||||
$(GR_SIM) $(SDL_LIBS)
|
||||
|
||||
fire3.o: fire3.c
|
||||
$(CC) $(CFLAGS) -c fire3.c
|
||||
|
||||
|
||||
fire4: fire4.o $(GR_SIM)
|
||||
$(CC) $(LFLAGS) $(SDL_LIBS) -o fire4 fire4.o \
|
||||
$(GR_SIM)
|
||||
$(CC) $(LFLAGS) -o fire4 fire4.o \
|
||||
$(GR_SIM) $(SDL_LIBS)
|
||||
|
||||
fire4.o: fire4.c
|
||||
$(CC) $(CFLAGS) -c fire4.c
|
||||
@ -45,8 +45,8 @@ fire4.o: fire4.c
|
||||
|
||||
|
||||
fire_blue: fire_blue.o $(GR_SIM)
|
||||
$(CC) $(LFLAGS) $(SDL_LIBS) -o fire_blue fire_blue.o \
|
||||
$(GR_SIM)
|
||||
$(CC) $(LFLAGS) -o fire_blue fire_blue.o \
|
||||
$(GR_SIM) $(SDL_LIBS)
|
||||
|
||||
fire_blue.o: fire_blue.c
|
||||
$(CC) $(CFLAGS) -c fire_blue.c
|
||||
|
Loading…
x
Reference in New Issue
Block a user