Last change
on this file was
c5c522c,
checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago
|
initial commit, transferred from cleaned syn3 svn tree
|
-
Property mode set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[c5c522c] | 1 | ######################################################################## |
---|
| 2 | # You shouldn't need to touch anything below here. |
---|
| 3 | ######################################################################## |
---|
| 4 | include ../../Makefile.config |
---|
| 5 | |
---|
| 6 | TARGET = libLCDdrivers.a |
---|
| 7 | OBJ += lcd.o drv_base.o $(DOBJ) |
---|
| 8 | SOURCES = Makefile lcd.c lcd.h \ |
---|
| 9 | MtxOrb.c MtxOrb.h IseT23A.c IseT23A.h wirz-sli.c wirz-sli.h text.c text.h \ |
---|
| 10 | curses_drv.c curses_drv.h drv_base.c drv_base.h \ |
---|
| 11 | hd44780.c hd44780.h port.h joy.c joy.h irman.c irman.h \ |
---|
| 12 | CFontz.c CFontz.h |
---|
| 13 | INCLUDE = -I../../shared |
---|
| 14 | |
---|
| 15 | |
---|
| 16 | ################################################################### |
---|
| 17 | # Compilation... |
---|
| 18 | # |
---|
| 19 | all: $(TARGET) |
---|
| 20 | |
---|
| 21 | |
---|
| 22 | $(TARGET): $(OBJ) Makefile |
---|
| 23 | $(AR) rcs $(TARGET) $(OBJ) |
---|
| 24 | #$(TARGET): $(OBJ) Makefile |
---|
| 25 | # $(GCC) -s $(MISC) $(INCLUDE) -o $(TARGET) $(OBJ) $(LIB) |
---|
| 26 | |
---|
| 27 | %.o: %.c %.h Makefile |
---|
| 28 | $(GCC) -c $(MISC) $(INCLUDE) $< |
---|
| 29 | |
---|
| 30 | |
---|
| 31 | ################################################################## |
---|
| 32 | # Other stuff... |
---|
| 33 | # |
---|
| 34 | clean: |
---|
| 35 | rm -f $(OBJ) *.o $(DOBJ) $(TARGET) *~ core |
---|
| 36 | |
---|
| 37 | edit: |
---|
| 38 | nedit $(SOURCES) $(EXTRAS) & |
---|
| 39 | |
---|
| 40 | todo: |
---|
| 41 | @echo ---------------=========================================== |
---|
| 42 | @grep TODO $(SOURCES) | grep -v SOURCES |
---|
| 43 | @grep FIXME $(SOURCES) | grep -v SOURCES |
---|
| 44 | @echo ---------------=========================================== |
---|
| 45 | |
---|
Note: See
TracBrowser
for help on using the repository browser.