source: npl/mediabox/lcdproc_edwin/src/server/drivers/Makefile

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
RevLine 
[c5c522c]1########################################################################
2# You shouldn't need to touch anything below here.
3########################################################################
4include ../../Makefile.config
5
6TARGET = libLCDdrivers.a
7OBJ += lcd.o drv_base.o $(DOBJ)
8SOURCES = 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
13INCLUDE = -I../../shared
14
15
16###################################################################
17# Compilation...
18#
19all: $(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#
34clean:
35        rm -f $(OBJ) *.o $(DOBJ) $(TARGET) *~ core
36
37edit:
38        nedit $(SOURCES) $(EXTRAS) &
39
40todo:
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.