| OLD | NEW |
| 1 # $Id: Makefile.dj 2284 2010-02-06 09:27:32Z peter $ | |
| 2 # | |
| 3 # Ultra-flat Makefile for DJGPP (also works for Cygwin). | 1 # Ultra-flat Makefile for DJGPP (also works for Cygwin). |
| 4 # Does NOT depend on or use configure. | 2 # Does NOT depend on or use configure. |
| 5 # | 3 # |
| 6 # Works for simple build but *not* for development (no clean, dist, etc). | 4 # Works for simple build but *not* for development (no clean, dist, etc). |
| 7 # Also, WARNING, no header dependencies are included! | 5 # Also, WARNING, no header dependencies are included! |
| 8 # | 6 # |
| 9 # How to compile: | 7 # How to compile: |
| 10 # make -fMkfiles/Makefile.dj | 8 # make -fMkfiles/Makefile.dj |
| 11 | 9 |
| 12 CFLAGS=-DHAVE_CONFIG_H -IMkfiles/dj -O -I. | 10 CFLAGS=-DHAVE_CONFIG_H -IMkfiles/dj -O -I. |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 | 262 |
| 265 ytasm: $(YTASM_OBJS) | 263 ytasm: $(YTASM_OBJS) |
| 266 $(CC) -o ytasm $(YTASM_OBJS) | 264 $(CC) -o ytasm $(YTASM_OBJS) |
| 267 | 265 |
| 268 vsyasm: $(VSYASM_OBJS) | 266 vsyasm: $(VSYASM_OBJS) |
| 269 $(CC) -o vsyasm $(VSYASM_OBJS) | 267 $(CC) -o vsyasm $(VSYASM_OBJS) |
| 270 | 268 |
| 271 .c.o: | 269 .c.o: |
| 272 $(CC) -c $(CFLAGS) -o $@ $< | 270 $(CC) -c $(CFLAGS) -o $@ $< |
| 273 | 271 |
| OLD | NEW |