dos33fsprogs/gr-sim/fade/Makefile
Vince Weaver 50584c5541 fix ordering of LFLAGS in Makefiles
recent Debian stopped allowing this
2019-11-12 09:53:24 -05:00

29 lines
444 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: fade
####
#demo_title.c: ../gr-utils/png2rle ../tfv/demo.png
# ../gr-utils/png2rle c ../tfv/demo.png demo_rle > demo_title.c
####
fade: fade.o $(GR_SIM)
$(CC) -o fade fade.o $(GR_SIM) $(LFLAGS) $(SDL_LIBS)
fade.o: fade.c demo_title.c
$(CC) $(CFLAGS) -c fade.c
####
clean:
rm -f *~ *.o fade