Files
2022-12-13 12:44:04 +01:00

21 lines
505 B
Makefile
Executable File

.SUFFIXES: .cc .obj
APPNAME = Server Early Death Test
ARCH = WINNT-4.0
SHOBJ = YES
BINARIES = $(BASEBIN)\EarlyDeath.exe
include ..\..\include\makeinclude\Makefile.WINNT-4.0
CXXINCLUDES = /I .\\
targets : $(BINARIES)
$(BASEBIN)\EarlyDeath.exe : .exec\$(TARGETDIR)\EarlyDeath.obj
-@if exist $@ erase $@
@echo ^ ^ ^ ^ ^ ^ =^> Linking $(@F)
$(LINK) $(CDEVLIB)\cdev.lib $(CDEVLIB)\cdevGenericServer.lib \
$(LINK_EXE_FLAGS) /out:$@ $?
@echo ^ ^ ^ ^ ^ ^ ^ ^ ^ Done...