marignotti/makefile.mk

30 lines
565 B
Makefile
Raw Normal View History

2012-04-13 00:01:00 +00:00
CFLAGS += $(DEFINES) -v -w
2012-05-05 05:08:27 +00:00
OBJS = main.o table.o driver.o s16debug.o mattach.o mconnect.o \
mread.o mwrite.o mdetach.o
2012-04-13 00:01:00 +00:00
TARGET = marignotti
$(TARGET): $(OBJS)
$(CC) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@
2012-05-05 05:08:27 +00:00
s16debug.o: s16debug.c s16debug.h
main.o: main.c marignotti.h
table.o: table.c marignotti.h
driver.o: driver.c marignotti.h net.h
mread.o: mread.c marignotti.h
mwrite.o: mwrite.c marignotti.h
mattach.o: mattach.c marignotti.h
mconnect.o: mconnect.c marignotti.h
mdetach.o: mdetach.c marignotti.h
2012-04-13 00:01:00 +00:00
clean:
$(RM) *.o *.root
clobber: clean
$(RM) $(TARGET)