source:
trunk/minix/commands/make/Makefile@
20
      
      | Last change on this file since 20 was 9, checked in by , 14 years ago | |
|---|---|
| File size: 348 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 1 | # Makefile for make (!) | 
| 2 | ||
| 3 | CFLAGS = -O -Dunix -D_MINIX -D_POSIX_SOURCE | |
| 4 | CC = exec cc | |
| 5 | ||
| 6 | OBJ = check.o input.o macro.o main.o make.o reader.o rules.o archive.o | |
| 7 | ||
| 8 | all: make | |
| 9 | ||
| 10 | make : $(OBJ) | |
| 11 | $(CC) -i -o make $(OBJ) | |
| 12 | install -S 330k make | |
| 13 | ||
| 14 | install: /usr/bin/make | |
| 15 | ||
| 16 | /usr/bin/make: make | |
| 17 | install -c -o bin make $@ | |
| 18 | ||
| 19 | $(OBJ): h.h | |
| 20 | ||
| 21 | clean: | |
| 22 | rm -f *.o *.bak core make | 
  Note:
 See   TracBrowser
 for help on using the repository browser.
    
