X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=Makefile;h=8ef86be5415c81c9074266a7e9a5207d35b67302;hp=2a6b7adc4f217b4dba59d3b4e2b416de154281dc;hb=4a050704ad2c497e9f1b0988334228b0bbc4c170;hpb=f155333ae18a25068644792e8940269d9fb28033 diff --git a/Makefile b/Makefile index 2a6b7adc..8ef86be5 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,8 @@ TELE_DRIVER_SRC = \ # TM_DRIVER_SRC = \ ao_adc.c \ - ao_ee.c + ao_ee.c \ + ao_ignite.c # # Tasks run on TeleMetrum @@ -80,6 +81,7 @@ TM_SRC = \ $(ALTOS_SRC) \ $(ALTOS_DRIVER_SRC) \ $(TELE_DRIVER_SRC) \ + $(TELE_RECEIVER_SRC) \ $(TELE_COMMON_SRC) \ $(TM_DRIVER_SRC) \ $(TM_TASK_SRC) @@ -152,6 +154,8 @@ SYM=$(SRC:.c=.sym) PROGS=telemetrum.ihx tidongle.ihx teleterra.ihx teledongle.ihx +HOST_PROGS=ao_flight_test + PCDB=$(PROGS:.ihx=.cdb) PLNK=$(PROGS:.ihx=.lnk) PMAP=$(PROGS:.ihx=.map) @@ -161,7 +165,7 @@ PAOM=$(PROGS:.ihx=) %.rel : %.c $(INC) $(CC) -c $(CFLAGS) -o$*.rel $*.c -all: $(PROGS) +all: $(PROGS) $(HOST_PROGS) telemetrum.ihx: $(TM_REL) Makefile $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(TM_REL) @@ -193,3 +197,6 @@ clean: rm -f $(PROGS) $(PCDB) $(PLNK) $(PMAP) $(PMEM) $(PAOM) install: + +ao_flight_test: ao_flight.c ao_flight_test.c + cc -g -o $@ ao_flight_test.c