source: tags/initial/AISC/Makefile

Last change on this file was 2, checked in by oldcode, 24 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1# INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben
2
3.SUFFIXES: .o .c
4OBJECTS = aisc.o aisc_commands.o aisc_var_ref.o aisc_mix.o
5
6$(MAIN): aisc
7
8aisc:   $(OBJECTS)
9        $(CPP) $(cflags) -o $@ $(OBJECTS)
10
11.c.o:
12        $(CPP) $(cflags) -c $< $(AINCLUDES)
13
14depend:
15        $(MAKEDEPEND) $(MAKEDEPENDINC) $(OBJECTS:.o=.c)
16
17clean:
18        rm -f *.[ao]
19        rm -f $(OBJECTS:.o=)
20        rm -f *%
21        rm -f core
22        mv doc/doc.pub .
23        rm -f doc/*
24        mv doc.pub doc
25proto:
26        rm -f aisc_proto.h
27        ../AISC_MKPTPS/aisc_mkpt -C *.c >aisc_proto.h
28
29# DO NOT DELETE THIS LINE -- make depend depends on it.
30
31aisc.o: 
32aisc.o: 
33aisc.o: 
34aisc.o: 
35aisc.o: 
36aisc.o:   
37aisc.o: aisc.h aisc_proto.h
38aisc_commands.o: 
39aisc_commands.o: 
40aisc_commands.o: 
41aisc_commands.o: 
42aisc_commands.o: 
43aisc_commands.o: 
44aisc_commands.o: 
45aisc_commands.o:   aisc.h
46aisc_commands.o: aisc_proto.h
47aisc_var_ref.o: 
48aisc_var_ref.o: 
49aisc_var_ref.o: 
50aisc_var_ref.o: 
51aisc_var_ref.o: 
52aisc_var_ref.o: 
53aisc_var_ref.o:  aisc.h aisc_proto.h
54aisc_mix.o: 
55aisc_mix.o: 
56aisc_mix.o: 
57aisc_mix.o: 
58aisc_mix.o: 
59aisc_mix.o: 
60aisc_mix.o:  aisc.h aisc_proto.h
Note: See TracBrowser for help on using the repository browser.