Last change
on this file since 13 was 10, checked in by phaller, 26 years ago |
Experimental support vor EMX/GCC 0.9d as build environment. IBM VAC++ 3 remains default. (SET CCENV=VAC3 or EMX)
|
File size:
395 bytes
|
Line | |
---|
1 | # ODIN / win32os2 Project
|
---|
2 | #
|
---|
3 | # makefile for the build system tools and standard rules
|
---|
4 | # Note: this has to be included after the compiler environment
|
---|
5 | #
|
---|
6 | # phaller@gmx.net, 1999/05/27
|
---|
7 | #
|
---|
8 |
|
---|
9 |
|
---|
10 |
|
---|
11 | #
|
---|
12 | # System Utilites
|
---|
13 | #
|
---|
14 | RM = rm -f
|
---|
15 | CP = copy
|
---|
16 | MKDIR = mkdir
|
---|
17 | ECHO = echo
|
---|
18 |
|
---|
19 |
|
---|
20 | #
|
---|
21 | # Targets
|
---|
22 | #
|
---|
23 | .c.obj:
|
---|
24 | $(CC) $(CFLAGS) -c $<
|
---|
25 |
|
---|
26 | .cpp.obj:
|
---|
27 | $(CXX) $(CXXFLAGS) -c $<
|
---|
28 |
|
---|
29 | .asm.obj:
|
---|
30 | $(AS) $(ASFLAGS) $<
|
---|
31 |
|
---|
32 |
|
---|
33 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.