mirror of
https://github.com/ksherlock/marignotti.git
synced 2024-12-13 01:30:43 +00:00
add makefile
This commit is contained in:
parent
cc79ed4ede
commit
ba336246ec
18
makefile.mk
Normal file
18
makefile.mk
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
CFLAGS += $(DEFINES) -v -w
|
||||||
|
OBJS = marignotti.o
|
||||||
|
TARGET = marignotti
|
||||||
|
|
||||||
|
$(TARGET): $(OBJS)
|
||||||
|
$(CC) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@
|
||||||
|
|
||||||
|
marignotti.o: marignotti.c net.h
|
||||||
|
|
||||||
|
pull:
|
||||||
|
gopher gopher://192.168.1.117:7070/0/marignotti.c > marignotti.c
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) *.o *.root
|
||||||
|
|
||||||
|
clobber: clean
|
||||||
|
$(RM) $(TARGET)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user