]> git.datanom.net - clib.git/blame_incremental - Makefile
Initial commit
[clib.git] / Makefile
... / ...
CommitLineData
1CC = gcc
2CFLAGS = -Wall -g
3DEPS = queue.h stack.h
4
5%.o: %.c $(DEPS)
6 $(CC) $< $(CFLAGS) -c -o $@
7
8demo: demo.o queue.o stack.o
9 $(CC) $(CFLAGS) -o demo demo.o queue.o stack.o
10
11clean:
12 rm -rf *.dSYM *.so *.a *.o demo
13
This page took 0.025665 seconds and 5 git commands to generate.