mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-01 01:06:33 +00:00
b1238af49d
this will probably upset people
56 lines
920 B
Makefile
56 lines
920 B
Makefile
CC = gcc
|
|
CFLAGS = -Wall -O2 -I.. -g
|
|
LFLAGS = -lm
|
|
|
|
SDL_LIBS= `sdl-config --libs`
|
|
SDL_INCLUDE= `sdl-config --cflags`
|
|
GR_SIM = ../gr-sim.a
|
|
|
|
all: fire fire2 fire_blue fire3 fire4
|
|
|
|
|
|
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) -o fire2 fire2.o \
|
|
$(GR_SIM) $(SDL_LIBS)
|
|
|
|
fire2.o: fire2.c
|
|
$(CC) $(CFLAGS) -c fire2.c
|
|
|
|
|
|
|
|
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) -o fire4 fire4.o \
|
|
$(GR_SIM) $(SDL_LIBS)
|
|
|
|
fire4.o: fire4.c
|
|
$(CC) $(CFLAGS) -c fire4.c
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
clean:
|
|
rm -f *~ *.o fire fire2 fire_blue fire3 fire4
|