mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-04 20:06:09 +00:00
56 lines
1.0 KiB
Makefile
56 lines
1.0 KiB
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: fireworks fw_purple lines image_load hgr_view
|
|
|
|
###
|
|
|
|
hgr_view: hgr_view.o $(GR_SIM)
|
|
$(CC) $(LFLAGS) $(SDL_LIBS) -o hgr_view hgr_view.o $(GR_SIM)
|
|
|
|
hgr_view.o: hgr_view.c
|
|
$(CC) $(CFLAGS) -c hgr_view.c
|
|
|
|
###
|
|
|
|
image_load: image_load.o $(GR_SIM)
|
|
$(CC) $(LFLAGS) $(SDL_LIBS) -o image_load image_load.o $(GR_SIM)
|
|
|
|
image_load.o: image_load.c
|
|
$(CC) $(CFLAGS) -c image_load.c
|
|
|
|
###
|
|
|
|
lines: lines.o $(GR_SIM)
|
|
$(CC) $(LFLAGS) $(SDL_LIBS) -o lines lines.o $(GR_SIM)
|
|
|
|
lines.o: lines.c
|
|
$(CC) $(CFLAGS) -c lines.c
|
|
|
|
###
|
|
|
|
fireworks: fireworks.o $(GR_SIM)
|
|
$(CC) $(LFLAGS) $(SDL_LIBS) -o fireworks fireworks.o $(GR_SIM)
|
|
|
|
fireworks.o: fireworks.c
|
|
$(CC) $(CFLAGS) -c fireworks.c
|
|
|
|
###
|
|
|
|
fw_purple: fw_purple.o $(GR_SIM)
|
|
$(CC) $(LFLAGS) $(SDL_LIBS) -o fw_purple fw_purple.o $(GR_SIM)
|
|
|
|
fw_purple.o: fw_purple.c
|
|
$(CC) $(CFLAGS) -c fw_purple.c
|
|
|
|
####
|
|
|
|
|
|
clean:
|
|
rm -f *~ *.o fireworks lines image_load hgr_view fw_purple
|