mirror of
https://github.com/ksherlock/marignotti.git
synced 2025-03-22 15:29:26 +00:00
19 lines
298 B
Makefile
19 lines
298 B
Makefile
|
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)
|
||
|
|