Changeset 145 in xtideuniversalbios for trunk/Configurator/makefile
- Timestamp:
- Mar 15, 2011, 11:28:17 AM (14 years ago)
- google:author:
- krille_n_@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Configurator/makefile
r81 r145 59 59 IHEADERS += -I. 60 60 61 # Path + target file to be buil d61 # Path + target file to be built 62 62 TARGET = $(BUILD_DIR)\$(PROG).com 63 63 … … 93 93 ############################################ 94 94 95 .PHONY: all clean build 95 .PHONY: all clean build release 96 96 97 97 # Make clean debug and release versions … … 99 99 @$(MAKE) clean 100 100 @$(MAKE) build 101 @echo All build!101 @echo All done! 102 102 103 103 # Clean … … 109 109 build: 110 110 @$(AS) "$(SRC_ASM)" $(ASFLAGS) -l"$(BUILD_DIR)\$(PROG).lst" -o"$(TARGET)" 111 @echo "$(TARGET)" build. 111 @echo "$(TARGET)" built. 112 113 release: build 114 @echo Compressing with UPX... 115 @upx -qq --8086 --ultra-brute $(TARGET) 116 @echo Done! $(TARGET) is ready for release.
Note:
See TracChangeset
for help on using the changeset viewer.