source: drsdaq/VME/struck/sis1100/V2.02/examples/irqs/link_irq/Makefile@ 23

Last change on this file since 23 was 22, checked in by ogrimm, 16 years ago
First commit of drsdaq program
  • Property svn:executable set to *
File size: 947 bytes
Line 
1 CC := gcc
2WFLAGS := -Wstrict-prototypes -Wmissing-prototypes \
3 -Wmissing-declarations-Wimplicit -Wreturn-type -Wunused \
4 -Wcomment -Wformat
5# -Wuninitialized -Werror
6DRIVER_PATH := ../../../V1.0
7CPPFLAGS := -I$(DRIVER_PATH)/linux-gnu -I$(DRIVER_PATH)/sis3100_calls
8
9
10CFLAGS := -g -ansi $(WFLAGS) -L$(DRIVER_PATH)/sis3100_calls
11
12srcdir := .
13cfiles := $(wildcard $(srcdir)/*.c)
14EXEC := $(cfiles:.c=)
15
16.PHONY: all
17all: $(EXEC)
18
19
20linkirqtest: linkirqtest.c
21 $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< -l_sis3100
22
23
24
25clean:
26 rm -f *.o core $(EXEC)
27
28depend:
29 cp Makefile Makefile.bak
30 sed -e '/^# DO NOT DELETE THIS LINE/,$$d' < Makefile.bak > Makefile
31 echo '# DO NOT DELETE THIS LINE' >> Makefile
32 echo ' ' >> Makefile
33 for i in $(cfiles) ; do \
34 echo checking $$i ; \
35 $(CC) -M $(CPPFLAGS) $(srcdir)/$$i >> Makefile ; \
36 done
37# DO NOT DELETE THIS LINE
38
39
40
Note: See TracBrowser for help on using the repository browser.