File: Makefile

package info (click to toggle)
premake4 4.3%2Brepack1-2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, stretch, trixie
  • size: 1,640 kB
  • ctags: 1,150
  • sloc: ansic: 636; makefile: 69; sh: 2
file content (34 lines) | stat: -rw-r--r-- 705 bytes parent folder | download | duplicates (25)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# GNU Make solution makefile autogenerated by Premake
# Type "make help" for usage help

ifndef config
  config=release
endif
export config

PROJECTS := Premake4

.PHONY: all clean help $(PROJECTS)

all: $(PROJECTS)

Premake4: 
	@echo "==== Building Premake4 ($(config)) ===="
	@${MAKE} --no-print-directory -C . -f Premake4.make

clean:
	@${MAKE} --no-print-directory -C . -f Premake4.make clean

help:
	@echo "Usage: make [config=name] [target]"
	@echo ""
	@echo "CONFIGURATIONS:"
	@echo "   release"
	@echo "   debug"
	@echo ""
	@echo "TARGETS:"
	@echo "   all (default)"
	@echo "   clean"
	@echo "   Premake4"
	@echo ""
	@echo "For more information, see http://industriousone.com/premake/quick-start"