You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
437 B
31 lines
437 B
!ifdef NTMAKEENV
|
|
|
|
!include $(NTMAKEENV)\makefile.def
|
|
|
|
!else # NTMAKEENV
|
|
|
|
# Unmunge the 8.3 munged files to their full splendor
|
|
|
|
DEPTH = ..\..
|
|
TARGETS = audioactive.h aafunctions.h
|
|
CP = $(DEPTH)\utils\cp
|
|
RM = $(DEPTH)\utils\rm
|
|
|
|
|
|
all:
|
|
# all: $(TARGETS)
|
|
|
|
audioactive.h: aactive.h
|
|
$(CP) -f $? $@
|
|
|
|
aafunctions.h: aafunct.h
|
|
$(CP) -f $? $@
|
|
|
|
clean:
|
|
$(RM) -f $(TARGETS)
|
|
|
|
fresh: clean all
|
|
|
|
|
|
|
|
!endif #NTMAKEENV
|