dos33fsprogs/utils/gr-sim/text/Makefile

22 lines
303 B
Makefile
Raw Permalink Normal View History

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: text
####
text: text.o $(GR_SIM)
$(CC) -o text text.o $(GR_SIM) $(LFLAGS) $(SDL_LIBS)
text.o: text.c
$(CC) $(CFLAGS) -c text.c
clean:
rm -f *~ *.o text