diff --git a/gr-sim/fire/Makefile b/gr-sim/fire/Makefile index fc61b21c..97d8631c 100644 --- a/gr-sim/fire/Makefile +++ b/gr-sim/fire/Makefile @@ -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