Initial code
[libside.git] / Makefile
1 all: test
2
3 test: test.c
4 gcc -O2 -g -Wall -o test test.c
5
6 .PHONY: clean
7
8 clean:
9 rm -f test
This page took 0.046106 seconds and 5 git commands to generate.