dos33fsprogs/gr-sim/rasterbars/Makefile
2018-06-10 13:04:30 -04:00

29 lines
599 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: rasterbars rasterbars_fixed
rasterbars: rasterbars.o $(GR_SIM)
$(CC) $(LFLAGS) $(SDL_LIBS) -o rasterbars rasterbars.o \
$(GR_SIM)
rasterbars.o: rasterbars.c
$(CC) $(CFLAGS) -c rasterbars.c
rasterbars_fixed: rasterbars_fixed.o $(GR_SIM)
$(CC) $(LFLAGS) $(SDL_LIBS) -o rasterbars_fixed rasterbars_fixed.o \
$(GR_SIM)
rasterbars_fixed.o: rasterbars_fixed.c
$(CC) $(CFLAGS) -c rasterbars_fixed.c
clean:
rm -f *~ *.o rasterbars rasterbars_fixed