9 lines
96 B
Makefile
9 lines
96 B
Makefile
|
CFLAGS=-DHOSTNAME=\"`hostname -f`\" -g
|
||
|
|
||
|
all: dist
|
||
|
|
||
|
dist: dist.o utils.o
|
||
|
|
||
|
clean:
|
||
|
rm -f dist *.o
|