dos33fsprogs/utils/gr-sim/split_screen/Makefile
Vince Weaver b1238af49d re-arranged the entire directory structure
this will probably upset people
2021-01-05 15:29:31 -05:00

26 lines
456 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: split_screen KATC.BIN
###
split_screen: split_screen.o $(GR_SIM)
$(CC) -o split_screen split_screen.o $(GR_SIM) $(LFLAGS) $(SDL_LIBS)
split_screen.o: split_screen.c
$(CC) $(CFLAGS) -c split_screen.c
####
KATC.BIN: kat.bmp
../../bmp2dhr/b2d kat.bmp hgr dither
clean:
rm -f *~ *.o split_screen image_load