test makefile added
[my-code/ivac.git] / Makefile_new
1 INCLUDEDIR = /usr/include
2 CFLAGS = -O3 -Wall -I/usr/include/directfb
3 LIBS = -L/usr/lib -ldirectfb
4
5 OBJS = dfbapi.o
6 OBJS2 = new_ivac
7
8 new_ivac: $(OBJS)
9         $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS) ivac.c
10
11 all: new_ivac
12
13 clean:
14         rm $(OBJS) $(OBJS2)
15
16 remake: clean all
17