b216c8f4e353609ae839da111f1cf938ec616ce2
[h316.git] / pc-tools / boot-maker / Makefile
1 default: bmaker
2
3 bmaker: main.c
4 gcc -o $@ $<
5
6 clean:
7 @rm -f *.o bmaker
8
9 #install: bmaker
10 # cp bmaker ../../bin
11
12 .PHONY: clean install default
13