Last change
on this file was 18, checked in by bird, 23 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
1.2 KB
|
Line | |
---|
1 | #
|
---|
2 | # /emx/src/utils/makefile
|
---|
3 | #
|
---|
4 | # Copyright (c) 1994-1996 by Eberhard Mattes
|
---|
5 | #
|
---|
6 | # This file is part of emx.
|
---|
7 | #
|
---|
8 | # emx is free software; you can redistribute it and/or modify it
|
---|
9 | # under the terms of the GNU General Public License as published by
|
---|
10 | # the Free Software Foundation; either version 2, or (at your option)
|
---|
11 | # any later version.
|
---|
12 | #
|
---|
13 | # emx is distributed in the hope that it will be useful,
|
---|
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
16 | # GNU General Public License for more details.
|
---|
17 | #
|
---|
18 | # You should have received a copy of the GNU General Public License
|
---|
19 | # along with emx; see the file COPYING. If not, write to the
|
---|
20 | # Free Software Foundation, 59 Temple Place - Suite 330,
|
---|
21 | # Boston, MA 02111-1307, USA.
|
---|
22 | #
|
---|
23 |
|
---|
24 | .SUFFIXES: .c .o
|
---|
25 |
|
---|
26 | BIN=\emx\bin\ #
|
---|
27 |
|
---|
28 | CC=gcc
|
---|
29 | CFLAGS=-O -Wall -I../include
|
---|
30 | LFLAGS=-s -Zsmall-conv
|
---|
31 |
|
---|
32 | .c.o:
|
---|
33 | $(CC) $(CFLAGS) -c $<
|
---|
34 |
|
---|
35 | default: all
|
---|
36 | all: updt touch
|
---|
37 | updt: $(BIN)updt.exe
|
---|
38 | touch: $(BIN)touch.exe
|
---|
39 |
|
---|
40 | updt.o: updt.c
|
---|
41 | touch.o: touch.c
|
---|
42 |
|
---|
43 | $(BIN)touch.exe: touch.o
|
---|
44 | gcc $(LFLAGS) -o $(BIN)touch.exe touch.o
|
---|
45 |
|
---|
46 | $(BIN)updt.exe: updt.o
|
---|
47 | gcc $(LFLAGS) -o $(BIN)updt.exe updt.o
|
---|
48 |
|
---|
49 | clean:
|
---|
50 | -del *.o
|
---|
51 |
|
---|
52 | realclean: clean
|
---|
53 | -del $(BIN)touch.exe
|
---|
54 | -del $(BIN)updt.exe
|
---|
55 |
|
---|
56 | # End of /emx/src/utils/makefile
|
---|
Note:
See
TracBrowser
for help on using the repository browser.