Mostly minor fixes up until version 0.8.10.
[irreco.git] / irtrans / irserver / src / makefile.dbox
blob2796a9267254a2adfca882c674e0bdbe16b59297
1 SHELL = /bin/sh
3 CC = /develop/dbox2/cdk/bin/powerpc-tuxbox-linux-gnu-gcc
5 CFLAGS =
6 CPPFLAGS = -DLINUX -DDBOX
7 LDFLAGS =
8 LIBS =
10 IRSERVER_OBJS = fileio.o linuxserio.o lowlevel.o server.o errormessage.o
12 irserver: $(IRSERVER_OBJS)
13         $(CC) $(IRSERVER_OBJS) -o irserver $(LDFLAGS)
15 clean:
16         rm $(IRSERVER_OBJS)
18 %.o: %.c dbstruct.h fileio.h lowlevel.h network.h remote.h serio.h
19         $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@