#
# This makefile is created by rsxide (release 10/99)
#

.SUFFIXES: .exe .res .a .o .c .cpp .cc .cxx .m .rc .p .f .F .r .y .l .s .S .def .h

CC=gcc
LD=gcc


all: testsvc.exe

CC_TARGET_01=-Zwin32 
CFLAGS_TARGET_01=-O2 -Wall 

testsvc.exe: testsvc.o service.o
	$(CC) $(CC_TARGET_01) -s  -o testsvc.exe testsvc.o service.o -ladvapi32 

testsvc.o: testsvc.cpp
	gcc -c -o testsvc.o testsvc.cpp $(CC_TARGET_01)  $(CFLAGS_TARGET_01)

service.o: service.cpp
	gcc -c -o service.o service.cpp $(CC_TARGET_01)  $(CFLAGS_TARGET_01)

