SUBDIR=daemon

ifndef CFLAGS
CFLAGS = -O2  -I.. -Wall -I../dosemu/include 
endif

CFLAGS += -I.

CFILES = dosemu_daemon.c 
HFILES = dosemu_daemon.h

# Insert all source- and header-files here.

ALL = $(CFILES) $(HFILES)

# All object-files are included here.

OBJS = dosemu_daemon.o 

include ../Makefile.common

install:	$(LIB)
 
