Last change
on this file was
5707,
checked in by westram, 16 years ago
|
- added '-c comment' switch to aisc_mkpt (writes comment to header)
- removed patchlev.h (really not used)
- less calls to (f)printf/fputs
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
510 bytes
|
Line | |
---|
1 | # INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben |
---|
2 | |
---|
3 | .SUFFIXES: .o .c .depend |
---|
4 | |
---|
5 | OBJECTS = mkptypes.o |
---|
6 | BINARY = aisc_mkpt |
---|
7 | |
---|
8 | $(MAIN): $(BINARY) |
---|
9 | |
---|
10 | $(BINARY): $(OBJECTS) |
---|
11 | $(ACC) $(cflags) -o $@ $(OBJECTS) |
---|
12 | |
---|
13 | .c.o: |
---|
14 | $(ACC) $(cflags) -c $< $(POST_COMPILE) |
---|
15 | |
---|
16 | clean: |
---|
17 | rm -f $(OBJECTS) $(BINARY) |
---|
18 | |
---|
19 | depends: |
---|
20 | @echo "No depends here" |
---|
21 | |
---|
22 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
---|
23 | |
---|
24 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
---|
25 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl |
---|
Note: See
TracBrowser
for help on using the repository browser.