|
Last change
on this file was
2,
checked in by oldcode, 25 years ago
|
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
468 bytes
|
| Line | |
|---|
| 1 | # INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben |
|---|
| 2 | .SUFFIXES: .o .c .cxx |
|---|
| 3 | OBJECTS = servercntrl.o |
|---|
| 4 | $(MAIN): $(OBJECTS) |
|---|
| 5 | $(AR) $(@) $(OBJECTS) |
|---|
| 6 | .c.o: |
|---|
| 7 | $(ACC) $(cflags) -c $< $(AINCLUDES) |
|---|
| 8 | .cxx.o: |
|---|
| 9 | $(CPP) $(cflags) -c $< $(CPPINCLUDES) |
|---|
| 10 | proto: |
|---|
| 11 | rm -f servercntrl_prototypes.h |
|---|
| 12 | ../MAKEBIN/aisc_mkpt -C $(OBJECTS:.o=.c) >servercntrl_prototypes.h |
|---|
| 13 | depend: |
|---|
| 14 | $(MAKEDEPEND) $(MAKEDEPENDINC) $(OBJECTS:.o=.cxx) |
|---|
| 15 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
|---|
Note: See
TracBrowser
for help on using the repository browser.