]> git.datanom.net - clib.git/blame - Makefile
Initial commit
[clib.git] / Makefile
CommitLineData
d104c687
MR
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.028779 seconds and 5 git commands to generate.